Resources
Installation
- Download the setup file from the link above.
- Run the installer as an administrator.
Usage
Open Command Prompt as an administrator and use the following commands:
# List available versions
nvm ls available
# Install a specific version
nvm install <version-name>
# Use a specific version
nvm use <version-name>
# Check the current version
nvm current
# Uninstall a specific version
nvm uninstall <version-name>
Commands
nvm list
: List installed versions.nvm list available
: List available versions.nvm install <version>
: Install a specific version.nvm use <version>
: Use a specific version.nvm current
: Check the current version.nvm uninstall <version>
: Uninstall a specific version.
Example
nvm install 14.17.0
nvm use 14.17.0